@import url('https://fonts.googleapis.com/css2?family=La+Belle+Aurore&family=Lato:wght@400;700&family=Ubuntu:wght@500&display=swap');

:root {
    --debug: 1px solid red;
  /*-----primary colors--------*/
    --color-1: #18B887;
    --color-2: #41C19A;
    --color-3: #6ACAAD;
    --color-4: #93D3BF;
    --color-5: #BCDCD2;
    --color-6: #B7E4E2;
    --color-7: #E1F6F0;
    --color-8: #E5E5E5;
    --color-9: #F7FBFA;
    --color-10: #FFFFFF;
    --color-text-1: rgb(0, 0, 0);
    --color-text-2:  rgba(0, 0, 0, 0.568);
    --color-text-3: #3E4958;
  }

  *,
  *:before,
  *:after{
      box-sizing: border-box;
      margin: 0;
      padding: 0;
  }


body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Ubuntu, 'Lato';
}

/* ----------HEADER----------------*/

.header-wrapper{
    grid-area: head;
    width: 100%;
    height: 40px;
    padding: 1em;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background-color: var(--color-7);
}

/*-----------LOGO------------*/
.logo{  
    width: 249px;
    height: 65px;

    font-family: La Belle Aurore;
    font-style: normal;
    font-weight: normal;
    font-size: 35px;
    line-height: 65px;
    color: var(--color-1);
}

/*-----------NAVIGATION ITEMS------------*/

.hamburger-menu{
    display: none;
}

.navlinks{
    height: 45px;

    font-family: 'Ubuntu', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 160%;
}

.nav-items ul{
    height: 10px;

    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
}

.nav-items li a{
    text-decoration: none;
    color: var(--color-text-1);
    margin-right: 2em;
}

.nav-items ul li a:hover{
    color: var(--color-2);
}

.nav-items span{
  color: var(--color-1);
}

/* --------VERIFY EMAIL ------------- */

.Verify-Email {
    display: flex;
    justify-content: space-between;
}
.Verify-Right {
    margin-top: 6%;
}
.Verify-Right form h1 {
    font-family: 'Lato';
    color: #000000;
    font-weight: bold;
    position: relative;
    font-weight: bold;
    font-size: 50px;
    text-align: center;
    margin-left: auto;
}
.Verify-Right form h2 {
    position: relative;
    color: #443742;
    width: 75%;
    font-family: 'Lato';
    font-size: 18px;
    font-weight: normal;
    text-align: center;
    margin-left: 14%;
    margin-top: 35px;
}
.Verify-Left img {
    margin-left: 10%;
      
}
.Code {
    width: 3%;
    padding: 24px;
    text-align: center;
    border: 0.5px solid rgba(0, 0, 0, 0.53);
    background: #FFFFFF;
    letter-spacing: 10px;
    border-radius: 10px;
    margin-left: 3%;
}
.input-box {
    margin-left: 27%;
}

.btn-box {
    font-weight: 400;
    width: 10%;
    text-decoration: none;
    border-radius: 100px;
    padding: 9px 30px;
    font-size: 15px;
    border: none;
    background: #18B887;
    color: #fff;
    margin-left: 21.5%;

}
.login-link {
    color: #18B887;
    text-decoration: none;
}
.tx-16 {
    font-size: 15px;
    font-family: "Lato";
    justify-content: space-between; 
    text-align: center;
}
.confirmation {
    margin-top: 10%;
}

/*----------------FOOTER-------------------------*/

footer{
    grid-area: foot;
    margin: 0;
    background-color: var(--color-1);
}

.footer-links{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-around;

    width: 100%;
}

.community-column{
   padding: 2em;
}

.community-column ul{
    list-style: none;
}

.community-column li{
    margin: .5em;
    font-size: 14px;
}

.community-column li a{
    text-decoration: none;
    color: var(--color-text-2);
}

.community-column h3{
    width: max-content;
    height: 30px;

    font-family: Lato;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    margin: 0 auto;

    color: var(--color-text-1);
}

footer p{
  font-size: 14px;
    text-align: center; 
    color: var(--color-text-2);
    padding-bottom: 1em;
    margin-bottom: 0;
}

footer .fa{
    color: var(--color-text-2);
}

.break-line2{
    width: 900px;
    height: 2px;
    border-radius: 30px;
    margin: 0 auto;

    background-color: var(--color-text-2);
}


@media screen and (max-width:900px) {

    /*-----------HEADER ITEMS------------*/
  
      .header-wrapper{
          
        width: 100%;
        height: 35px;
        padding: 2em;
    }
  
    /*-----------LOGO------------*/
  
    .logo{  
        width: 200px;
        height: 45px;
  
        font-size: 24px;
        line-height: 35px;
    }
  
    /*-----------NAVIGATION ITEMS------------*/
  
  
  
    /*-----------RESPONSIVE HAMBURGER MENU------------*/
  
    .hamburger-menu{
        display: flex;
        flex-direction: column;
  
        position: absolute;
        right: 3%;
        top: 3%;
  
        cursor: pointer;
    }
  
    /* .navlinks{
        flex-direction: row;
        align-items: center;
        font-size: 14px;
        line-height: 19px;
    } */
  
    .line{
        width: 40px;
        height: 4px;
        margin: 3px;
      
        transition: all .7s;
  
        background-color: var(--color-text-1);
    }
  
    .nav-items ul {
        flex-direction: column;
        height: 50vh;
        width: 60%;
        background-color: #fff;
        justify-content: center;
        /* align-items: center; */
        right: -0.5em;
        top: -35em;
        transition: top 1s;
        margin: 5px;
        position: absolute;
      }
  
      .ham .nav-items ul{
        right: -1em;
        top: -0.5em;
      }
  
      .nav-items ul li a{
        margin-bottom: .5em;
        display: block;
      }    
  
    .ham .line1{
        transform: rotateZ(-45deg) translate(-7px, 7px);
    }
  
    .ham .line2{
        opacity: 0;
    }
  
    .ham .line3{
        transform: rotateZ(45deg) translate(-7px, -7px);
    }

    /* -------  INPUT YOUR RESPONSIVE CODE SHERE------- */



    /*---------------FOOTER-------------------------*/
  
    .footer-links{
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      text-align: center;
  
      width: 100%;
    }
  
    .community-column{
    padding: 2em;
    }
  
    .community-column ul{
      list-style: none;
    }
  
    .community-column li{
      margin: .5em;
      font-size: 14px;
    }
  
    .community-column li a{
      text-decoration: none;
      color: var(--color-text-2);
    }
  
    .community-column h3{
      width: auto;
    }
  
    .break-line2{
      width: 300px;
    }
  
    footer p{
      font-size: 14px;
    }
  
  
  }